{$CLEO .s}
{$INCLUDE_ONCE ../cleo_tester.inc}

script_name "0AE4"
test("0AE4 (does_directory_exist)", tests)
terminate_this_custom_script


function tests

    it("should fail on a non-existing directory", test1)
    it("should success on existing directory", test2)
    return
    
    function test1
        does_directory_exist {path} "cleo\not_a_directory" // tested opcode
        assert_result_false()
    end
    
     function test2
        does_directory_exist {path} "cleo\cleo_tests" // tested opcode
        assert_result_true()
    end

end
